home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / macabuse / imlib / include / mdlread.hpp < prev    next >
C/C++ Source or Header  |  1997-05-20  |  405b  |  13 lines

  1. #ifndef _MDL_READ_HPP_
  2. #define _MDL_READ_HPP_
  3. #include "palette.hpp"
  4. #include "image.hpp"
  5.  
  6. // end ==-1 the read all images  startn==1 first image
  7. short mdl_total_images(char *fn);
  8. image **read_mdl(char *fn, palette *&pal, short startn, short endn, short &total);
  9. void write_mdl(image **images, short total_images, palette *pal,char *fn,
  10.         short firstpage=0, short images_per_page=20);
  11.  
  12. #endif
  13.